home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / pxewin.zip / PXI.HPP < prev    next >
C/C++ Source or Header  |  1992-02-04  |  2KB  |  56 lines

  1. // PXEWIN - (C) Copyright 1992 by Beam Engineering, INC.
  2.  
  3. // PXI_HPP //
  4.  
  5. // Contents ----------------------------------------------------------------
  6. //
  7. //    Class PXI.  Paradox initialization class.
  8. //
  9. // End ---------------------------------------------------------------------
  10.  
  11. // External Reference Name for this Header ---------------------------------
  12.  
  13. #ifndef PXI_HPP
  14.     #define PXI_HPP
  15.  
  16. // End ---------------------------------------------------------------------
  17.  
  18. // Interface Dependences ---------------------------------------------------
  19.  
  20. #ifndef PXEOBJ_HPP
  21.     #include "pxeobj.hpp"
  22. #endif // PXEOBJ_HPP //
  23.  
  24. // End ---------------------------------------------------------------------
  25.  
  26. // class PXI //
  27.  
  28. _CLASSDEF(PXI)
  29. class PXI:public PXEngObject
  30. {
  31. private:
  32.     Pchar clt;                /* Copy of windows network
  33.                            client */
  34.     int smode;                /* Copy of windows network
  35.                            mode */
  36. public:
  37.                         /* Initialize engine for
  38.                            Windows */
  39.     PXI(Pchar client,int ShareMode);
  40.     virtual ~PXI(void);            /* For engine exit */
  41. };
  42.  
  43. // Description -------------------------------------------------------------
  44. //
  45. //    This class is provided to provide PXENGINE initialization and closing
  46. //    for single or multiuser environs.
  47. //
  48. // Note --------------------------------------------------------------------
  49. //
  50. //    PXI assumes PXEngObject's PXError handler.
  51. //
  52. // End ---------------------------------------------------------------------
  53.  
  54. #endif // PXI_HPP //
  55.  
  56.